home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / DYN401.ZIP / kernel / README < prev    next >
Text File  |  1996-02-18  |  1KB  |  53 lines

  1.  
  2. Note that the jumpto assembler code has been commented out of makefile
  3. which would require an assembler which you may not have.  If you have
  4. the appropriate assembler and wish to use the assembler code (dpp
  5. Strategy 1) make sure you uncomment the reference to jumpto.obj
  6.  
  7. When rebuilding the system from scratch without the top level make it is
  8. necessary to build this directory first.
  9.  
  10.  
  11. To rebuild the libraries use:
  12.  
  13. dmake -d MAKEFILE.DM NEW=1       (the first time)
  14.     or
  15. dmake -d MAKEFILE.DM             (thereafter)
  16.  
  17. where MAKEFILE.DM is one of:
  18.  
  19. M16.DM        Microsoft 16 bit
  20. M32.DM        Microsoft 32 bit
  21. B16.DM        Borland 16 bit
  22. B32.DM        Borland 32 bit
  23. W32.DM        WATCOM 32 bit
  24. S32.DM        Symantec 32 bit
  25.  
  26. Or use the following for Linux/unix
  27.  
  28. make -f makefile.unx
  29.  
  30. The BORLAND_HOME path needs to be edited in B16.DM or B32.DM prior to use.
  31.  
  32. Debug libraries may be produced as follows:
  33.  
  34. dmake -d MAKEFILE.DM  DEBUG=1
  35.  
  36. If you want to build for a different dpp Strategy (like S1) use:
  37. Note that ../include/generics.h must be rebuilt first.
  38.  
  39. cd ..
  40. dmake -f MAKEFILE.DM  STRAT=-S1 makegens
  41. cd kernel
  42. dmake -f MAKEFILE.DM  STRAT=-S1 newgens  (regenerates the .c files)
  43. dmake -f MAKEFILE.DM  STRAT=-S1
  44.  
  45. There is also a clean.bat batch file which will clean all the garbage files
  46. or you can use:
  47.  
  48. dmake -f MAKEFILE.DM  clean
  49.  
  50.  
  51. The "port" subdirectory contains a few files which may be helpful if
  52. attempting to port Dynace.
  53.